23 lines
No EOL
532 B
YAML
23 lines
No EOL
532 B
YAML
services:
|
|
web:
|
|
image: iceshrimp.dev/iceshrimp/iceshrimp.net:dev
|
|
container_name: iceshrimp.net_web
|
|
restart: unless-stopped
|
|
networks:
|
|
- db
|
|
- ip6net
|
|
ports:
|
|
- "127.0.0.1:24042:24042"
|
|
environment:
|
|
- ICESHRIMP_CONFIG_OVERRIDES=/app/config/configuration.ini
|
|
volumes:
|
|
- ./data/media:/data/media
|
|
- ./config:/app/config:ro # This must be a directory for hot reload to work
|
|
|
|
networks:
|
|
db:
|
|
name: postgres_db
|
|
external: true
|
|
ip6net:
|
|
name: ip6net
|
|
external: true |