Browse Source

Removed Docker File

Yoginth 7 years ago
parent
commit
9573889f8b
1 changed files with 0 additions and 29 deletions
  1. 0 29
      docker-compose.yml

+ 0 - 29
docker-compose.yml

@@ -1,29 +0,0 @@
-version: '2'
-
-services:
-  drone-server:
-    image: drone/drone:0.8
-    ports:
-      - 8000:8000
-    volumes:
-      - ./drone:/var/lib/drone/
-    restart: always
-    environment:
-      - DRONE_OPEN=true
-      - DRONE_ADMIN=foo
-      - DRONE_HOST=http://<DRONE-HOSTNAME:PORT>
-      - DRONE_GOGS=true
-      - DRONE_GOGS_URL=http://<GOGS-HOSTNAME:PORT>
-      - DRONE_SECRET=INSERT_A_SECRET_STRING
-
-  drone-agent:
-    image: drone/drone:0.8
-    command: agent
-    restart: always
-    depends_on: [ drone-server ]
-    volumes:
-      - /var/run/docker.sock:/var/run/docker.sock
-    environment:
-      - DRONE_SERVER=ws://drone-server:8000/ws/broker
-      # - DRONE_SERVER=wss://ci.example.com/ws/broker # for https hostnames
-      - DRONE_SECRET=INSERT_A_SECRET_STRING