34 lines
720 B
YAML
34 lines
720 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
homer_private:
|
|
image: b4bz/homer
|
|
container_name: homer_private
|
|
restart: unless-stopped
|
|
volumes:
|
|
- '/home/nick/configs/routing/homer:/www/assets'
|
|
environment:
|
|
- UID=1000
|
|
- GID=1000
|
|
networks:
|
|
- proxy
|
|
|
|
homer_social:
|
|
image: b4bz/homer
|
|
container_name: homer_social
|
|
restart: unless-stopped
|
|
volumes:
|
|
- '/home/nick/configs/routing/social:/www/assets'
|
|
environment:
|
|
- UID=1000
|
|
- GID=1000
|
|
networks:
|
|
- proxy
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
name: proxy
|
|
yourls:
|
|
name: yourls
|