File tree 2 files changed +14
-3
lines changed
2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
terraform :
10
- runs-on : docker
10
+ runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout code
13
13
uses : actions/checkout@v4
24
24
run : rm -f install-opentofu.sh
25
25
26
26
- name : Initialize OpenTofu
27
- run : opentofu init
27
+ run : tofu init
28
28
working-directory : ./terraform
29
29
30
30
- name : Apply OpenTofu
31
- run : opentofu apply -auto-approve
31
+ run : tofu apply -input=false
32
32
working-directory : ./terraform
Original file line number Diff line number Diff line change
1
+ ---
2
+ services :
3
+ nexus :
4
+ image : sonatype/nexus3:3.70.3
5
+ container_name : nexus
6
+ restart : unless-stopped
7
+ ports :
8
+ - 8081:8081
9
+ - 8082:8082
10
+ volumes :
11
+ - /docker/appdata/nexus:/nexus-data # # To get to work run: sudo chown -R 200 /docker/appdata/nexus/ | cat /docker/appdata/nexus/admin.password
You can’t perform that action at this time.
0 commit comments