diff options
Diffstat (limited to '')
| -rw-r--r-- | Pipfile | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -17,9 +17,9 @@ gevent-websocket = "*" python_version = "3.6" [scripts] -consume = "python consume.py" -publish = "python publish.py" -webapp = "python webapp.py" -build = "docker build -t pythondiscord/snekbox:latest -f docker/Dockerfile ." -buildwebapp = "docker build -t pythondiscord/snekboxweb:latest -f docker/Dockerfile.webapp ." -compose = "docker-compose up" +snekbox = "python snekbox.py" +snekweb = "python snekweb.py" +buildbox = "docker build -t pythondiscord/snekbox:latest -f docker/Dockerfile ." +buildweb = "docker build -t pythondiscord/snekboxweb:latest -f docker/Dockerfile.webapp ." +pushbox = "docker push pythondiscord/snekbox:latest" +pushweb = "docker push pythondiscord/snekboxweb:latest" |