aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
blob: a7747a65c976923e39ea52e4e731da4f14057b44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
version: "3.7"

services:
  snekbox:
    container_name: snekbox
    privileged: true
    image: ghcr.io/python-discord/snekbox:latest
    ports:
     - 8060:8060
    init: true
    ipc: none
    build:
      context: .
      dockerfile: Dockerfile
    volumes:
      - user-base:/snekbox/user_base

volumes:
  user-base: