16 lines
328 B
YAML
16 lines
328 B
YAML
version: "3.2"
|
|
services:
|
|
redbot:
|
|
container_name: redbot
|
|
image: phasecorex/red-discordbot:full
|
|
restart: unless-stopped
|
|
env_file:
|
|
- ../stack.env
|
|
volumes:
|
|
- /docker/appdata/redbot/data:/data
|
|
environment:
|
|
- TZ=America/Moncton
|
|
networks:
|
|
default:
|
|
name: "ubuntu-server"
|
|
external: true |