21 lines
481 B
YAML
21 lines
481 B
YAML
# docker-compose.yml
|
|
# docker-compose file example for oxidized that will start along with docker daemon
|
|
oxidized:
|
|
restart: always
|
|
image: oxidized/oxidized:latest
|
|
container_name: oxidized
|
|
privileged: true
|
|
#ports:
|
|
# - 8888:8888/tcp
|
|
environment:
|
|
CONFIG_RELOAD_INTERVAL: 600
|
|
volumes:
|
|
- /mnt/containers/oxidized:/root/.config/oxidized:Z
|
|
networks:
|
|
- outline-internal
|
|
- reverseproxy-nw
|
|
|
|
networks:
|
|
outline-internal:
|
|
reverseproxy-nw:
|
|
external: true |