10 lines
217 B
YAML
10 lines
217 B
YAML
|
version: "3.8"
|
||
|
|
||
|
services:
|
||
|
formies:
|
||
|
image: your-dockerhub-username/formies-combined:latest
|
||
|
container_name: formies-app
|
||
|
ports:
|
||
|
- "8080:8080" # Expose the application on port 8080
|
||
|
restart: always
|