-
Notifications
You must be signed in to change notification settings - Fork 44
55 lines (53 loc) · 1.53 KB
/
docker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Build and publish to Docker Hub
on:
push:
branches:
- 'master'
jobs:
atlas:
runs-on: ubuntu-latest
env:
NODE_OPTIONS: "--max_old_space_size=6144"
steps:
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
file: packages/atlas/Dockerfile
push: true
tags: joystream/atlas:latest
atlas-meta-server:
runs-on: ubuntu-latest
steps:
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
file: packages/atlas-meta-server/Dockerfile
push: true
tags: joystream/atlas-meta-server:latest
atlas-avatar-service:
runs-on: ubuntu-latest
steps:
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
file: packages/atlas-avatar-service/Dockerfile
push: true
tags: joystream/atlas-avatar-service:latest