Compose-Examples/examples/homer/docker-compose.yml

15 lines
285 B
YAML
Raw Normal View History

2023-02-15 21:45:31 +00:00
version: '3.6'
services:
homer:
image: b4bz/homer:latest
container_name: homer
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/homer:/www/assets
2023-03-17 21:28:46 +00:00
ports:
- "8080:8080"
2023-02-15 21:45:31 +00:00
restart: unless-stopped
environment:
- UID=1000
- GID=1000