blob: aec17d309c852b194c4b56a1fbb9fa934c7842cd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
version: "3.7"
services:
  snekbox:
    container_name: snekbox
    privileged: true
    image: pythondiscord/snekbox:latest
    ports:
     - 8060:8060
    init: true
    ipc: none
    build:
      context: .
      dockerfile: docker/Dockerfile
 
  |