03e1f3b3e7
Build & Deploy / build-and-deploy (push) Successful in 13s
- docker-compose.yml: changed from build: . to image: droideparanoico/dostalgia - README: simplified quick start to pull instead of build - README: added link to Docker Hub repo with CI note
16 lines
350 B
YAML
16 lines
350 B
YAML
services:
|
|
dostalgia:
|
|
image: droideparanoico/dostalgia
|
|
# Uncomment to build from source instead of using the pre-built image:
|
|
# build: .
|
|
container_name: dostalgia
|
|
ports:
|
|
- "8765:8765"
|
|
volumes:
|
|
- ./data:/data
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- DOSTALGIA_DATA_DIR=/data
|
|
restart: unless-stopped
|